home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Visual Basic 5.0 (2nd Edition) / Hardcore Visual Basic 5.0 - Second Edition (1997)(Microsoft Press).iso / Code / LISTEN~1.CLS < prev    next >
Text File  |  1997-06-14  |  550b  |  34 lines

  1. VERSION 1.0 CLASS
  2. BEGIN
  3.   MultiUse = -1  'True
  4. END
  5. Attribute VB_Name = "CListEnums"
  6. Attribute VB_GlobalNameSpace = False
  7. Attribute VB_Creatable = False
  8. Attribute VB_PredeclaredId = False
  9. Attribute VB_Exposed = True
  10. Option Explicit
  11.  
  12. Enum EAppearance
  13.     eaFlat
  14.     ea3D
  15. End Enum
  16.  
  17. Enum ESortModeList
  18.     esmlUnsorted
  19.     esmlSortVal
  20.     esmlSortText
  21.     esmlSortBin
  22.     esmlSortLen
  23.     esmlShuffle
  24. End Enum
  25.  
  26. Enum ESortError
  27.     eseNone = 1000
  28.     eseItemNotFound
  29.     eseOutOfRange
  30.     eseDuplicateNotAllowed
  31. End Enum
  32.  
  33.  
  34.